home *** CD-ROM | disk | FTP | other *** search
- program Btchprog;
-
- uses
- Forms,
- Btchmain in 'BTCHMAIN.PAS' {FormBatchMain},
- Statdlg in 'STATDLG.PAS' {FormStatus},
- Batchdlg in 'BATCHDLG.PAS' {FormBatchDef},
- Getdlg in 'GETDLG.PAS' {GetBatchDlg},
- Errtbdlg in 'ERRTBDLG.PAS' {BtnBottomDlg};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TFormBatchMain, FormBatchMain);
- Application.CreateForm(TFormStatus, FormStatus);
- Application.CreateForm(TFormBatchDef, FormBatchDef);
- Application.CreateForm(TGetBatchDlg, GetBatchDlg);
- Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
- Application.Run;
- end.
-